home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 21 / QRZ Ham Radio Callsign Database - Volume 21.iso / CDINST.BAT < prev    next >
DOS Batch File  |  2003-04-15  |  537b  |  28 lines

  1. echo OFF
  2. echo '
  3. echo Preparing to Copy the QRZ CDROM files to your hard drive.
  4. echo '
  5. echo This will take about 550 mb of disk space on your C: drive
  6. echo '
  7. echo Press any key to begin, or Ctrl-C to abort the copy
  8. echo '
  9. pause
  10. echo Starting copy operation.
  11. echo '
  12. echo This may take a while...
  13. echo '
  14.  
  15. mkdir C:\CALLBK
  16.  
  17. cd CALLBK
  18.  
  19. xcopy *.* C:\CALLBK /S /Y
  20.  
  21. echo '
  22.  
  23. echo File copy completed.
  24. echo '
  25.  
  26. echo If you have not yet done so, please run SETUP.EXE from the QRZ CDROM to install the QRZ viewer software.
  27.  
  28.